home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntinc20
/
process.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-15
|
687b
|
31 lines
/* defines for spawnve, etc. */
#ifndef _PROCESS_H
#define _PROCESS_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define P_WAIT 0
#define P_NOWAIT 1
#define P_OVERLAY 2
__EXTERN int spawnv __PROTO((int, char *, char **));
__EXTERN int spawnve __PROTO((int, char *, char **, char **));
__EXTERN int _spawnve __PROTO((int, char *, char **, char **));
__EXTERN int spawnvp __PROTO((int, char *, char **));
__EXTERN int spawnle __PROTO((int, char *, ...));
__EXTERN int spawnl __PROTO((int, char *, ...));
__EXTERN int spawnlp __PROTO((int, char *, ...));
#ifdef __cplusplus
}
#endif
#endif /* _PROCESS_H */